home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 January: Mac OS SDK / Dev.CD Jan 00 SDK2.toast / What's New / • What was new 11⁄99 / Sample Code / Interapplication Communication / FinderLaunch / MPWTool / FinderLaunchTool.r < prev    next >
Encoding:
Text File  |  1999-09-13  |  652 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     FinderLaunchTool.r
  3. */
  4.  
  5. #include "Processes.r"
  6. #include "CodeFragments.r"
  7.  
  8. resource 'SIZE' (-1, purgeable)  {
  9.     reserved,
  10.     acceptSuspendResumeEvents,
  11.     reserved,
  12.     canBackground,
  13.     doesActivateOnFGSwitch,
  14.     backgroundAndForeground,
  15.     dontGetFrontClicks,
  16.     ignoreAppDiedEvents,
  17.     is32BitCompatible,
  18.     isHighLevelEventAware,
  19.     localAndRemoteHLEvents,
  20.     isStationeryAware,
  21.     dontUseTextEditServices,
  22.     reserved,
  23.     reserved,
  24.     reserved,
  25.     1024 * 300,
  26.     1024 * 300
  27. };
  28.  
  29. resource 'cfrg' (0) {
  30.     {    kPowerPC,
  31.         kFullLib,
  32.         kNoVersionNum,
  33.         kNoVersionNum,
  34.         kDefaultStackSize,
  35.         kNoAppSubFolder,
  36.         kIsApp,
  37.         kOnDiskFlat,
  38.         kZeroOffset,
  39.         kWholeFork,
  40.         "FinderLaunchTool"
  41.     }
  42. };
  43.